home *** CD-ROM | disk | FTP | other *** search
/ PC Media 2 / PC MEDIA CD02.iso / share / udos / exc10 / help.scr < prev   
Encoding:
Text File  |  1993-01-27  |  2.7 KB  |  71 lines

  1. ; EXC Commands:
  2. ; DELAY nnn              Wait nnn seconds
  3. ; KEY   menomonic        Push the key onto the keyboard stack.
  4. ; TYPE  "string"         Push the ASCII string onto the keyboard stack.
  5. ; WAITFOR [NOT] "string" Wait until the string appears on the screen.  If NOT
  6. ;                        spcified, wait until string is not on screen.
  7. ; WAITSCR                Wait until anything changes on the screen.
  8. ; SETWAIT nnn            Wait nnn seconds before a WAITFOR or WAITSCR times
  9. ;                        out.
  10. ; TIMEOUT label          Branch to label when the next WAITFOR or WAITSCR
  11. ;                        times out.
  12. ; SEARCH "string"        Test to see if the string is on the screen. Sets
  13. ;                        "Y/N" condition.
  14. ; IFY label              If condition set to Y, go to label.
  15. ; IFN label              If condition set to N, go to label.
  16. ; GOTO label             Unconditional branch to label.
  17. ; :label                 Define a label.
  18. ; QUIT                   Halt processing the script file.
  19. ;                        End-of-file on the script file issues an automatic
  20. ;                        QUIT.
  21. ; BEEP                   Sound a short beep on speaker. Useful in debugging
  22. ;                        scripts.
  23. ; CASE ON|OFF            Determines whether WAITFOR and SEARCH tests should
  24. ;                        be case-sensitive (ON). Default=ON (case-sensitive)
  25. ; Leading and trailing blanks, lines beginning with a semicolon and blank
  26. ; lines are ignored by the script processor.
  27. ;
  28. ; The following key mnemonics are recognized:
  29. ;
  30. ; Single keys:
  31. ; <x> <BKSP> <DEL> <DOWN> <END> <ENTER> <F1-F12> <ESC> <HOME> <INS> <LEFT> 
  32. ; <PGDN> <PGUP> <PRTSC> <RIGHT> <TAB> <UP> <GRAY5> <GRAY+> <GRAY-> <GRAY*>
  33. ;
  34. ; Shift combinations: <SHF+s>     CTL combinations: <CTL+s>
  35. ; ALT combinations:   <ALT+s>
  36. ;
  37. ; x = any ASCII value that can be entered from the keyboard with a single
  38. ;     key, or SHIFT + a single key.
  39. ; s = any of the single key mnemonic keywords or character except <PRTSC>.
  40. ;
  41. ; NOTE: Some SHF, CTL and ALT key combinations are undefined.  See the
  42. ;       keycode table in EXC.DOC.
  43. ;
  44. ; WAITFOR, SEARCH, IFY, IFN and SETWAIT will not function properly if the
  45. ; executing apllication is in a graphics mode.
  46. ;
  47. ; Example:  
  48.    WAITFOR "Entries"
  49.    TYPE "FO"
  50.    WAITFOR "OPEN CATALOG"
  51.    TYPE "E:\OZCIS\NOVLIB\"
  52.    KEY <TAB>
  53.    KEY <ESC>
  54.    TYPE "NOVLIB.L11"
  55.    KEY <CTL+ENTER>
  56.    WAITFOR "NOVLIB.L11"
  57.    TYPE "SLADDNAEA"
  58.    KEY <CTL+ENTER>
  59.    DELAY 2;
  60.    WAITFOR NOT "Sorting Index"
  61.    TYPE "FS"
  62.    KEY <CTL+ENTER>
  63.    DELAY 2
  64.    WAITFOR NOT "Please wait."
  65.    DELAY 1
  66.    WAITFOR NOT "Please wait."
  67.    BEEP
  68.    KEY <ALT+X>
  69.    QUIT
  70.